home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Exchange
/
CD Exchange - Volume 1.iso
/
utils
/
misc
/
ace
/
ace-2.0.lha
/
PRGS.lha
/
ExternFunc
/
func2.b
< prev
next >
Wrap
Text File
|
1994-01-16
|
263b
|
17 lines
{*
** A test of external function use.
** sub2.s (assembled to produce sub2.o)
** is used in conjunction with this:
**
** bas -O func2 sub2.o
*}
defint x,y
external function subtract%
input "enter x: ",x
input "enter y: ",y
print x;"-";y;"=";subtract(x,y)